home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 21 / Mac Magazin and MacEasy Magazine CD - Issue 21.iso / Wissenschaft & Technik / yorick12vr1-nofpu folder / include / testfull.i < prev    next >
Text File  |  1996-02-29  |  711b  |  36 lines

  1. /* This file runs a full set of tests on the Macintosh version 
  2.    of yorick, although it should be also useful for any other version.
  3.    */
  4.  
  5. /* run all tests in testp.i */
  6. skip_testb= 0;
  7. skip_test1= 0;
  8. skip_test2= 0;
  9. skip_test3= 0;
  10.  
  11. /* use the same pass count for all tests */
  12. npass= 20;
  13.  
  14. /* run the parser test */
  15. include, "testp.i"
  16.  
  17. /* Run the tests of the math library routines */
  18. include, "testm.i"
  19. testm;
  20.  
  21. /* Run the linpack benchmark */
  22. include, "testlp.i"
  23. testlp;
  24.  
  25. /* Run the tests of the graphics package */
  26. include, "testg.i"
  27. /* NOTE!! running mode zero test first to be sure the
  28.    window exists before anyone switches to animate mode.
  29. */
  30. lissajous,0;
  31. lissajous,1;
  32. testg;
  33.  
  34. include, "demo2.i";
  35. demo2;
  36.